home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / SIMPLE16._B_ < prev    next >
Text File  |  1997-05-22  |  724b  |  31 lines

  1. #
  2. # Borland makefile for SIMPLE [Win16]
  3. # Requires WSC16.DLL & WSC16.LIB
  4. #
  5. # To use: "make -fsimple16._B_"
  6. #
  7.  
  8. CCFLAGS = -c -2
  9.  
  10. simple.exe: simple.res simple.obj about.obj line.obj paint.obj sioerror.obj simple.def wsc16.lib
  11.    tlink -c -n -Tw  c0ws @simple.rsp ,simple,simple, mathws cws import wsc16,simple,simple
  12.    rlink simple.res simple.exe
  13.  
  14. simple.res: simple.rc
  15.    brcc simple.rc
  16.  
  17. about.obj: about.c about.h
  18.    bcc $(CCFLAGS)  about.c
  19.  
  20. simple.obj: simple.c simple.h wsc.h
  21.    bcc $(CCFLAGS)  simple.c
  22.  
  23. sioerror.obj: sioerror.c sioerror.h wsc.h
  24.    bcc $(CCFLAGS)  sioerror.c
  25.  
  26. paint.obj: paint.c paint.h
  27.    bcc $(CCFLAGS)  paint.c
  28.  
  29. line.obj: line.c line.h wsc.h
  30.    bcc $(CCFLAGS)  line.c
  31.